Skip to content

Method: static {...}

1: package de.fhdw.gaming.ipspiel24.ssp.domain;
2:
3: /**
4: * Possible Choices for the Game outcome.
5: */
6: public enum SspPossibleChoice {
7: /**
8: * Rock.
9: */
10: SPC_ROCK,
11: /**
12: * Paper.
13: */
14: SPC_PAPER,
15: /**
16: * Scissors.
17: */
18: SPC_SCISSORS
19:
20: }